翻訳と辞書
Words near each other
・ Clathromangelia variegata
・ Clathroporina
・ Clathroporinopsis
・ Clathropsis
・ Clathrosepta
・ Clathrosepta becki
・ Classmates (2015 film)
・ Classmates (TV series)
・ Classmates.com
・ Classon
・ Classon Avenue (IND Crosstown Line)
・ Classon's Bridge
・ Classora
・ Classpad
・ ClassPass
Classpath (Java)
・ Classroom
・ Classroom Assessment Techniques
・ Classroom Chaos
・ Classroom climate
・ Classroom Crisis
・ Classroom management
・ Classroom walkthrough
・ ClassTV
・ Classun
・ Classwide Peer Tutoring
・ ClassWish
・ Classy
・ Classy 'n Smart
・ Classy 'N Smart Stakes


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Classpath (Java) : ウィキペディア英語版
Classpath (Java)

Classpath is a parameter—set either on the command-line, or through an environment variable—that tells the Java Virtual Machine or the Java compiler where to look for user-defined classes and packages.
==Overview and architecture==

Similar to the classic dynamic loading behavior, when executing Java programs, the Java Virtual Machine finds and loads classes lazily (it loads the bytecode of a class only when the class is first used). The classpath tells Java where to look in the filesystem for files defining these classes.
The virtual machine searches for and loads classes in this order:
# bootstrap classes: the classes that are fundamental to the Java Platform (comprising the public classes of the Java Class Library, and the private classes that are necessary for this library to be functional).
# extension classes: packages that are in the ''extension'' directory of the JRE or JDK, jre/lib/ext/
# user-defined packages and libraries
By default only the packages of the JDK standard API and extension packages are accessible without needing to set where to find them. The path for all user-defined packages and libraries must be set in the command-line (or in the Manifest associated with the Jar file containing the classes).

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Classpath (Java)」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.